home *** CD-ROM | disk | FTP | other *** search
- // Copyright (c) 1994, William Wagner
- // All Rights reserved.
- //
- // This source is a portion of a shareware program. It may be distributed
- // only in its entirety. The copyright statements must be included with any
- // reproduction of this source.
- //
-
- // cassette.h : main header file for the CASSETTE application
- //
-
- #ifndef __CASSETTE_H__
- #define __CASSETTE_H__
-
- #ifndef __AFXWIN_H__
- #error include 'stdafx.h' before including this file for PCH
- #endif
-
- #include "resource.h" // main symbols
-
- /////////////////////////////////////////////////////////////////////////////
- // CCassetteApp:
- //
- // This is the application class. There is only one instance. It is
- // the main application object. There is very little implementation here.
- //
-
- class CCassetteApp : public CWinApp
- {
- public:
- //Simple constructor.
- CCassetteApp();
-
- // Overrides
- //Initialize thyself.
- virtual BOOL InitInstance();
-
- // Implementation
-
- //Message map: This class handles the about and help search commands.
- //{{AFX_MSG(CCassetteApp)
- afx_msg void OnAppAbout();
- afx_msg void OnHelpSearch();
- //}}AFX_MSG
- DECLARE_MESSAGE_MAP()
- };
-
-
- /////////////////////////////////////////////////////////////////////////////
- #endif
-